home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_c / mscfunct / key_shft.c < prev    next >
C/C++ Source or Header  |  1987-05-08  |  162b  |  12 lines

  1. #include <dos.h>
  2.  
  3. int key_shift()
  4. {
  5.     union REGS regs;
  6.     
  7.     regs.h.ah = 2;
  8.     int86( 0x16, ®s, ®s );
  9.     
  10.     return( (int)regs.h.al );
  11. }
  12.